home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zchar2.c < prev    next >
C/C++ Source or Header  |  1997-04-08  |  8KB  |  283 lines

  1. /* Copyright (C) 1992, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zchar2.c */
  20. /* Level 2 character operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gschar.h"
  25. #include "gsmatrix.h"        /* for gxfont.h */
  26. #include "gsstruct.h"        /* for st_stream */
  27. #include "gxfixed.h"        /* for gxfont.h */
  28. #include "gxfont.h"
  29. #include "estack.h"
  30. #include "ialloc.h"
  31. #include "ichar.h"
  32. #include "ifont.h"
  33. #include "igstate.h"
  34. #include "iname.h"
  35. #include "store.h"
  36. #include "stream.h"
  37. #include "ibnum.h"
  38. #include "gspath.h"             /* gs_rmoveto prototype */
  39.  
  40. /* Table of continuation procedures. */
  41. private int xshow_continue(P1(os_ptr));
  42. private int yshow_continue(P1(os_ptr));
  43. private int xyshow_continue(P1(os_ptr));
  44. static const op_proc_p xyshow_continues[4] = {
  45.     0, xshow_continue, yshow_continue, xyshow_continue
  46. };
  47.  
  48. /* Forward references */
  49. private int cshow_continue(P1(os_ptr));
  50. private int moveshow(P2(os_ptr, int));
  51. private int moveshow_continue(P2(os_ptr, int));
  52.  
  53. /* <proc> <string> cshow - */
  54. private int
  55. zcshow(os_ptr op)
  56. {    os_ptr proc_op = op - 1;
  57.     os_ptr str_op = op;
  58.     gs_show_enum *penum;
  59.     int code;
  60.  
  61.     /* Even though this is not documented anywhere by Adobe, */
  62.     /* the Adobe interpreters apparently allow the string and */
  63.     /* the procedure to be provided in either order! */
  64.     if ( r_is_proc(proc_op) )
  65.       ;
  66.     else if ( r_is_proc(op) )    /* operands reversed */
  67.       { proc_op = op;
  68.         str_op = op - 1;
  69.       }
  70.     else
  71.       { check_op(2);
  72.         return_error(e_typecheck);
  73.       }
  74.     if ( (code = op_show_setup(str_op, &penum)) != 0 )
  75.       return code;
  76.     if ( (code = gs_cshow_n_init(penum, igs, (char *)str_op->value.bytes,
  77.                      r_size(str_op))) < 0
  78.        )
  79.        {    ifree_object(penum, "op_show_enum_setup");
  80.         return code;
  81.        }
  82.     op_show_finish_setup(penum, 2, NULL);
  83.     sslot = *proc_op;            /* save kerning proc */
  84.     return cshow_continue(op - 2);
  85. }
  86. private int
  87. cshow_continue(os_ptr op)
  88. {    gs_show_enum *penum = senum;
  89.     int code;
  90.     check_estack(4);    /* in case we call the procedure */
  91.     code = gs_show_next(penum);
  92.     if ( code != gs_show_move )
  93.     {    code = op_show_continue_dispatch(op, code);
  94.         if ( code == o_push_estack )    /* must be gs_show_render */
  95.         {    make_op_estack(esp - 1, cshow_continue);
  96.         }
  97.         return code;
  98.     }
  99.     /* Push the character code and width, and call the procedure. */
  100.     {    ref *pslot = &sslot;
  101.         gs_point wpt;
  102.  
  103.         gs_show_current_width(penum, &wpt);
  104.         push(3);
  105.         make_int(op - 2, gs_show_current_char(penum));
  106.         make_real(op - 1, wpt.x);
  107.         make_real(op, wpt.y);
  108.         push_op_estack(cshow_continue);
  109.         push_op_estack(zsetfont);    /* restore font afterwards */
  110.         *++esp = *pfont_dict(gs_currentfont(igs));
  111.         gs_setfont(igs, gs_show_current_font(penum));
  112.         *++esp = *pslot;    /* user procedure */
  113.     }
  114.     return o_push_estack;
  115. }
  116.  
  117. /* <charname> glyphshow - */
  118. private int
  119. zglyphshow(os_ptr op)
  120. {    gs_glyph glyph;
  121.     gs_show_enum *penum;
  122.     int code;
  123.  
  124.     switch ( gs_currentfont(igs)->FontType )
  125.       {
  126.       case ft_CID_encrypted:
  127.       case ft_CID_user_defined:
  128.       case ft_CID_TrueType:
  129.         check_int_leu(*op, gs_max_glyph - gs_min_cid_glyph);
  130.         glyph = (gs_glyph)op->value.intval + gs_min_cid_glyph;
  131.         break;
  132.       default:
  133.         check_type(*op, t_name);
  134.         glyph = name_index(op);
  135.       }
  136.     if ( (code = op_show_enum_setup(op, &penum)) != 0 )
  137.       return code;
  138.     if ( (code = gs_glyphshow_init(penum, igs, glyph)) < 0 )
  139.       { ifree_object(penum, "op_show_glyph");
  140.         return code;
  141.       }
  142.     op_show_finish_setup(penum, 1, NULL);
  143.     return op_show_continue(op - 1);
  144. }
  145.  
  146. /* - rootfont <font> */
  147. private int
  148. zrootfont(os_ptr op)
  149. {    push(1);
  150.     *op = *pfont_dict(gs_rootfont(igs));
  151.     return 0;
  152. }
  153.  
  154. /* <string> <numarray|numstring> xshow - */
  155. private int
  156. zxshow(os_ptr op)
  157. {    return moveshow(op, 1);
  158. }
  159.  
  160. /* <string> <numarray|numstring> yshow - */
  161. private int
  162. zyshow(os_ptr op)
  163. {    return moveshow(op, 2);
  164. }
  165.  
  166. /* <string> <numarray|numstring> xyshow - */
  167. private int
  168. zxyshow(os_ptr op)
  169. {    return moveshow(op, 3);
  170. }
  171.  
  172. /* Common code for {x,y,xy}show */
  173. private int
  174. moveshow(os_ptr op, int xymask)
  175. {    gs_show_enum *penum;
  176.     int code = op_show_setup(op - 1, &penum);
  177.  
  178.     if ( code != 0 )
  179.       return code;
  180.     if ( (code = gs_xyshow_n_init(penum, igs, (char *)op[-1].value.bytes, r_size(op - 1)) < 0) )
  181.     {    ifree_object(penum, "op_show_enum_setup");
  182.         return code;
  183.     }
  184.     code = num_array_format(op);
  185.     if ( code < 0 )
  186.     {    ifree_object(penum, "op_show_enum_setup");
  187.         return code;
  188.     }
  189.     op_show_finish_setup(penum, 2, NULL);
  190.     ref_assign(&sslot, op);
  191.     return moveshow_continue(op - 2, xymask);
  192. }
  193.  
  194. /* Continuation procedures */
  195.  
  196. private int
  197. xshow_continue(os_ptr op)
  198. {    return moveshow_continue(op, 1);
  199. }
  200.  
  201. private int
  202. yshow_continue(os_ptr op)
  203. {    return moveshow_continue(op, 2);
  204. }
  205.  
  206. private int
  207. xyshow_continue(os_ptr op)
  208. {    return moveshow_continue(op, 3);
  209. }
  210.  
  211. /* Get one value from the encoded number string or array. */
  212. /* Sets pvalue->value.realval. */
  213. private int
  214. sget_real(const ref *nsp, int format, uint index, ref *pvalue)
  215. {    int code;
  216.     switch ( code = num_array_get(nsp, format, index, pvalue) )
  217.     {
  218.     case t_integer: pvalue->value.realval = pvalue->value.intval;
  219.     case t_real: return t_real;
  220.     case t_null: code = gs_note_error(e_rangecheck);
  221.     default: return code;
  222.     }
  223. }
  224.  
  225. private int
  226. moveshow_continue(os_ptr op, int xymask)
  227. {    const ref *nsp = &sslot;
  228.     int format = num_array_format(nsp);
  229.     int code;
  230.     gs_show_enum *penum = senum;
  231.     uint index = ssindex.value.intval;
  232.  
  233.     for ( ; ; )
  234.       { ref rwx, rwy;
  235.         code = gs_show_next(penum);
  236.         if ( code != gs_show_move )
  237.           { ssindex.value.intval = index;
  238.         code = op_show_continue_dispatch(op, code);
  239.         if ( code == o_push_estack )    /* must be gs_show_render */
  240.         {    make_op_estack(esp - 1, xyshow_continues[xymask]);
  241.         }
  242.         return code;
  243.           }
  244.         /* Move according to the next value(s) from the stream. */
  245.         if ( xymask & 1 )
  246.           { code = sget_real(nsp, format, index++, &rwx);
  247.         if ( code < 0 ) break;
  248.           }
  249.         else
  250.           rwx.value.realval = 0;
  251.         if ( xymask & 2 )
  252.           { code = sget_real(nsp, format, index++, &rwy);
  253.         if ( code < 0 ) break;
  254.           }
  255.         else
  256.           rwy.value.realval = 0;
  257.         code = gs_rmoveto(igs, rwx.value.realval, rwy.value.realval);
  258.         if ( code < 0 ) break;
  259.       }
  260.     /* An error occurred.  Clean up before returning. */
  261.     return op_show_free(code);
  262. }
  263.  
  264. /* ------ Initialization procedure ------ */
  265.  
  266. BEGIN_OP_DEFS(zchar2_op_defs) {
  267.     {"2cshow", zcshow},
  268.     {"0rootfont", zrootfont},
  269.         /* Internal operators */
  270.     {"0%cshow_continue", cshow_continue},
  271. END_OP_DEFS(0) }
  272. BEGIN_OP_DEFS(zchar2_l2_op_defs) {
  273.         op_def_begin_level2(),
  274.     {"1glyphshow", zglyphshow},
  275.     {"2xshow", zxshow},
  276.     {"2xyshow", zxyshow},
  277.     {"2yshow", zyshow},
  278.         /* Internal operators */
  279.     {"0%xshow_continue", xshow_continue},
  280.     {"0%yshow_continue", yshow_continue},
  281.     {"0%xyshow_continue", xyshow_continue},
  282. END_OP_DEFS(0) }
  283.